home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 April / EnigmA AMIGA RUN 26 (1998)(G.R. Edizioni)(IT)[!][issue 1998-04].iso / earkit / mailer / voodoo / rexx / sendvoodoo.bed < prev    next >
Text File  |  1998-03-13  |  351b  |  17 lines

  1. /*
  2.  * Deliver message when using Blacks Editor as an external
  3.  * editor for Voodoo.
  4.  *
  5.  */
  6.  
  7. options results
  8.  
  9. SaveFile QUIET NOBACKUP NOICON        /* Save message */
  10.  
  11. GetFilePath FILE            /* Get filename only */
  12. message="T:"result            /* Attach T: as path to filename */
  13.  
  14. address VOODOO 'SEND' message        /* Send to Voodoo */
  15. Quit QUIET                /* Quit out of BED */
  16.  
  17.